home *** CD-ROM | disk | FTP | other *** search
- ' EventGbl.bas
-
- ' Global module for EventCod demonstration program
- ' Sample program exploring how common algorithms can be
- ' converted to event driven versions for Visual Basic
- '
-
- ' SampleArray is the data array used to demonstrate
- ' the different search and sort algorithms.
-
- Global Const ArraySize% = 6000
-
- ' We allocate an extra byte here to prevent boundary
- ' errors during the quicksort search
- Global SampleArray(6001) As Double
-
-